home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / Tcl-Tk 8.0 / Pre-installed version / tcl8.0 / win / tclWinInt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-15  |  828 b   |  39 lines  |  [TEXT/CWIE]

  1. /*
  2.  * tclWinInt.h --
  3.  *
  4.  *    Declarations of Windows-specific shared variables and procedures.
  5.  *
  6.  * Copyright (c) 1994-1996 Sun Microsystems, Inc.
  7.  *
  8.  * See the file "license.terms" for information on usage and redistribution
  9.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  10.  *
  11.  * SCCS: @(#) tclWinInt.h 1.7 97/06/25 10:56:14
  12.  */
  13.  
  14. #ifndef _TCLWININT
  15. #define _TCLWININT
  16.  
  17. #ifndef _TCLINT
  18. #include "tclInt.h"
  19. #endif
  20. #ifndef _TCLPORT
  21. #include "tclPort.h"
  22. #endif
  23.  
  24. /*
  25.  * Some versions of Borland C have a define for the OSVERSIONINFO for
  26.  * Win32s and for NT, but not for Windows 95.
  27.  */
  28.  
  29. #ifndef VER_PLATFORM_WIN32_WINDOWS
  30. #define VER_PLATFORM_WIN32_WINDOWS 1
  31. #endif
  32.  
  33. EXTERN int        TclWinSynchSpawn(void *args, int type, void **trans,
  34.                       Tcl_Pid *pidPtr);
  35. EXTERN int        TclWinGetPlatformId(void);
  36.  
  37.  
  38. #endif    /* _TCLWININT */
  39.